60a99bab3d42e4f179773f905efacf69599e6598,src/main/java/dw/xmlrpc/DokuJClient.java,DokuJClient,delAcl,#String#String#,644
Before Change
*/
public void delAcl(String scope, String username) throws DokuException{
try {
genericQuery("plugin.acl.delAcl", new Object[]{scope, username});
} catch (DokuMethodDoesNotExistsException e){
throw new DokuIncompatibleVersionException("dokuwiki-2013-12-08 (Binky)");
}
After Change
*/
public boolean delAcl(String scope, String username) throws DokuException{
try {
return (boolean) genericQuery("plugin.acl.delAcl", new Object[]{scope, username});
} catch (DokuMethodDoesNotExistsException e){
throw new DokuIncompatibleVersionException("dokuwiki-2013-12-08 (Binky)");
}